home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / bbs_util / ans100.zip / ANSWER.TXT < prev    next >
Text File  |  1996-04-17  |  3KB  |  102 lines

  1.  
  2.          GCE BBS Answer v1.00a. Copyright (C) 1990-1996 GCE Software.
  3.                All Rights Reserved. Written by Chan S. Sam.
  4.  
  5.  
  6. DISCLAIMER INFORMATION
  7. ~~~~~~~~~~~~~~~~~~~~~~
  8.         No warranty is provided. The author is NOT responsible for ANY
  9. damages that may occur with the use of the program. The program is provided
  10. AS-IS and can not be modified in ANY way. The following files should be
  11. present for this program to run properly:
  12.  
  13. ANSWER .TXT - This documentation.
  14. ANSWER .EXE - The executable itself.
  15. INIT   .BAT - A BATCH file that the program creates.
  16. SAMPLE .BAT - A sample of how this program is setup.
  17. FILE_ID.DIZ - File Idenification for BBS'.
  18.  
  19.  
  20. REGISTRATION
  21. ~~~~~~~~~~~~
  22.         Registration allows you to receive updated versions of this program
  23. and this is also shown to the end user. Registration fees are $25 dollars
  24. payable in United States Funds such as a Money Order. Checks are NOT accepted
  25. and Money Orders must be payable to 'Chan Sam'. Fees are subject to change.
  26.  
  27. To register this program send a money order to:
  28.  
  29.                         Chan Sam
  30.                         96 School Street
  31.                         Lowell, MA 01854
  32.  
  33.  
  34. REQUIREMENTS
  35. ~~~~~~~~~~~~
  36. -  Any system with an 80286+ microprocessor.
  37. -  A FOSSIL driver.
  38. -  200K Conventional RAM.
  39.  
  40.  
  41. SETUP
  42. ~~~~~
  43.         Make sure ANSWER.CFG does not exist in the current directory and
  44. run ANSWER.EXE. A setup system will load up and just enter the appropriate
  45. parameters that suits your system. You will need to create a batch file
  46. that also suits the needs of your system.
  47.  
  48.         A start up batch file needs to be called. After the carrier is
  49. detected, the program exits with INIT.BAT which in turn calls BOARD.BAT
  50. with the communication settings. The first parameter is the COM port and
  51. the second is the BAUD rate.
  52.  
  53.  
  54. ERROR LEVELS
  55. ~~~~~~~~~~~~
  56. 255 - User Exit
  57. 254 - Connection
  58. 253 - Fatal Error
  59.  
  60.  
  61. INIT.BAT example
  62. ~~~~~~~~~~~~~~~~
  63. @echo off
  64. BOARD.BAT 2 38400
  65.           ^ ^^^^^
  66.           |   |__________ BAUD RATE
  67.           |______________ COM PORT
  68.  
  69. SAMPLE.BAT example            <--- bat file to call BBS
  70. ~~~~~~~~~~~~~~~~~~
  71. @echo off
  72.  
  73. :start                        <--- Start of batch file
  74. cd\answer                     <--- Switch to where the answer stuff is at
  75. answer.exe >>boot.txt
  76.              ^^^^^^^^
  77.                |_____________ Directs fatal errors into this file
  78.  
  79. if errorlevel 255 goto user   <--- The SysOp exits
  80. if errorlevel 254 goto bbs    <--- Someone is online
  81. if errorlevel 253 goto error  <--- Fatal error
  82.  
  83. :error                        <--- Fatal Error has been reported
  84. echo.
  85. echo Fatal Error:
  86. echo Please review BOOT.TXT.
  87. echo.
  88. goto end                      <--- End's it, if there are complications
  89.  
  90. :bbs                          <--- Carrier is detected
  91. call INIT.BAT                 <--- Load the board or board select utility
  92. goto start                    <--- Go back to beginning of loop
  93.  
  94. :user
  95. echo.
  96. echo Have a nice day! :)
  97. echo.
  98. goto end                      <--- End's it
  99.  
  100. :end                          <--- End of BATCH
  101.  
  102.